home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / info-service / www / src / midaswww-1.0 / SGMLMarkerText.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-11-16  |  1.4 KB  |  48 lines

  1. /*==================================================================*/
  2. /*                                                                  */
  3. /* SGMLMarkerTextObject                                             */
  4. /*                                                                  */
  5. /* T.Johnson - (TonyJ@Slacvx.Slac.Stanford.Edu)           June.92   */
  6. /*                                                                  */
  7. /* Defines marker text segment for the SGMLText widget            */
  8. /*                                                                  */
  9. /*==================================================================*/
  10.  
  11. #ifndef  SGMLMARKERTEXT_H
  12. #define  SGMLMARKERTEXT_H
  13. #include "SGMLMarkerText.h"
  14.  
  15. extern WidgetClass sGMLMarkerTextObjectClass;
  16. typedef struct _SGMLMarkerTextRec  *SGMLMarkerTextObject;
  17.  
  18. #define SGMLNcolumnAlign        "columnAlign"
  19. #define SGMLCColumnAlign        "ColumnAlign"
  20. #define SGMLNposition        "position"
  21. #define SGMLCPosition        "Position"
  22.  
  23. #ifdef _NO_PROTO
  24.  
  25. extern Widget  CreateSGMLMarkerText();
  26.  
  27. #else
  28.  
  29. #if defined(__cplusplus) || defined(c_plusplus)
  30. extern "C" {
  31. #endif
  32.  
  33.     extern Widget SGMLCreateMarkerText(Widget parent,
  34.         char *name,
  35.         ArgList al,
  36.         int ac);
  37.  
  38. #if defined(__cplusplus) || defined(c_plusplus)
  39. }
  40. #endif
  41.  
  42. #endif /* _NO_PROTO */
  43.  
  44. #define SGMLIsMarkerText(w)     XtIsSubclass(w,sGMLMarkerTextObjectClass)
  45.  
  46. #endif SGMLMARKERTEXT_H
  47.  
  48.